home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / lib_show / animal / chien.e < prev    next >
Text File  |  1998-12-22  |  142b  |  13 lines

  1. class CHIEN
  2.  
  3. inherit QUADRUPEDE;
  4.  
  5. feature {ANY}
  6.    
  7.    crier is
  8.       do
  9.          std_output.put_string("OUARF");
  10.       end;
  11.    
  12. end -- CHIEN
  13.